scrollbars.css
ASCII text, with CRLF line terminators
1
::-webkit-scrollbar,
2
::-webkit-scrollbar-corner {
3
width: 17px;
4
height: 17px;
5
border: 0 solid rgba(0, 0, 0, 0.2);
6
background-color: rgba(80, 99, 108, 0.9);
7
background-clip: border-box;
8
}
9
10
::-webkit-scrollbar:horizontal,
11
::-webkit-scrollbar-corner {
12
border-top-width: 1px;
13
}
14
15
::-webkit-scrollbar:vertical,
16
::-webkit-scrollbar-corner {
17
border-left-width: 1px;
18
}
19
20
::-webkit-scrollbar-thumb {
21
width: 32px;
22
height: 32px;
23
border: 4px solid transparent;
24
border-radius: 8px;
25
background-color: rgba(255, 255, 255, 0.6);
26
background-clip: padding-box;
27
}
28
29
::-webkit-scrollbar-thumb:horizontal {
30
border-top-width: 5px;
31
border-top-left-radius: 8px 9px;
32
border-top-right-radius: 8px 9px;
33
}
34
35
::-webkit-scrollbar-thumb:vertical {
36
border-left-width: 5px;
37
border-top-left-radius: 9px 8px;
38
border-bottom-left-radius: 9px 8px;
39
}
40
41
::-webkit-scrollbar-thumb:hover {
42
background-color: rgba(255, 255, 255, 0.75);
43
}
44
45
::-webkit-scrollbar-thumb:active {
46
background-color: #FFFFFF;
47
}
48
49
::-webkit-scrollbar-thumb:disabled {
50
background-color: rgba(255, 255, 255, 0.24);
51
}
52